home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / ONEINT.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  235b  |  12 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    index = 13;
  6.    printf("The value of the index is %d\n", index);
  7.    index = 27;
  8.    printf("The value of the index is %d\n", index);
  9.    index = 10;
  10.    printf("The value of the index is %d\n", index);
  11. }
  12.